www.gusucode.com > Piwik 网站流量统计系统 v2.9.1PHP源码程序 > Piwik 网站流量统计系统 v2.9.1/How to install Piwik.html/piwik/vendor/mnapoli/php-di/src/DI/Definition/MergeableDefinition.php

    <?php
/**
 * PHP-DI
 *
 * @link      http://php-di.org/
 * @copyright Matthieu Napoli (http://mnapoli.fr/)
 * @license   http://www.opensource.org/licenses/mit-license.php MIT (see the LICENSE file)
 */

namespace DI\Definition;

/**
 * Definition that is mergeable with another.
 *
 * @author Matthieu Napoli <matthieu@mnapoli.fr>
 */
interface MergeableDefinition extends Definition
{
    /**
     * Merge another definition with the current definition and returns the result.
     *
     * In case of conflicts, the current definition prevails.
     *
     * @param MergeableDefinition $definition
     *
     * @return MergeableDefinition Merged definition
     */
    public function merge(MergeableDefinition $definition);
}